home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / edm0407s.zip / STAT3SRC.ZIP / USERMSGH.HPP < prev   
C/C++ Source or Header  |  1996-07-08  |  428b  |  22 lines

  1. // Messagehandler for user messages
  2.  
  3. #ifndef _USERMSGH_HPP_
  4. #define _USERMSGH_HPP_
  5.  
  6. #define INCL_WIN
  7. #include <os2.h>
  8.  
  9. #include <ihandler.hpp>
  10.  
  11. #include "mymsg.h"
  12.  
  13. class AUserMessageHandler : public IHandler
  14. {
  15.   protected:
  16.     Boolean dispatchHandlerEvent (IEvent& evt);
  17.     virtual Boolean openFileReady (IEvent& evt)  = 0;
  18.     virtual Boolean saveFileReady (IEvent& evt)  = 0;
  19. };
  20.  
  21. #endif //_USERMSGH_HPP_
  22.